Layer Definition Schema
ArcPad Element
See Also  Send comments on this topic.
Layer Definition Schema : ArcPad Element

Glossary Item Box

Description

The root element for all ArcPad XML statements.

Diagram

LAYER Element SCRIPT Element Sequence ArcPad Element

Overview

ArcPad
The root element for all ArcPad XML statements.
debug optional Restriction of xs:string
Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts.
Sequence
SCRIPT
Used in customization files (ArcPad.apx, *.apa, *.apl) to define scripts or specify an associated script file.
LAYER 1..∞
When used in a layer definition, LAYER is used to define the layer's custom characteristics.

Attributes

NameTypeUseDefaultFixedDescription
debugRestriction of xs:stringoptionalfalse Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts.

Examples

Source

<xs:element name="ArcPad" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The root element for all ArcPad XML statements.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="apl:SCRIPT" />
      <xs:element maxOccurs="unbounded" ref="apl:LAYER" />
    </xs:sequence>
    <xs:attribute default="false" name="debug">
      <xs:annotation>
        <xs:documentation>Flag that determines whether ArcPad retains script code to display during run time errors. This is helpful when debugging scripts.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string" />
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.